home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- # Showaudio for machines that have SOX and playaiff
- # Simon Leinen <simon@lia.di.epfl.ch>
- # See also showaudio.sgi
- # Hmm, wonder why playaiff can't read from a pipe...
- #
- rm -f /tmp/$$.aiff
- sox -t ul - /tmp/$$.aiff
- playaiff /tmp/$$.aiff
- #
- # Note that we remove the temp file (unlike other parts of metamail)-:
- #
- rm /tmp/$$.aiff
-
-